@import url(http://fonts.googleapis.com/css?family=Roboto:400+700);

body {
  font-family: Roboto;
}

#chart {
  width: 560px;
  height: 300;
  margin: 0;
  display: block;
}



#chart #bars {
  display: inline-block;
  background: #f7f7f7;
  width: 560px;
  height: 300px;
  padding: 0;
  margin: 0;
}

#chart #bars li {
  display: table-cell;
  width: 100px;
  height: 300px;
  margin: 0;
  text-align: center;
  position: relative;
}

#chart #bars li .bar {
  display: block;
  width: 60px;
  margin-left: 0px;
  background: #00dbfb;
  position: absolute;
  bottom: 0px;
}

#chart #bars li .bar:hover {
  background: #5AE;
  cursor: pointer;
}

#chart #bars li .bar:hover:before {
  color: #000;
  content: attr(data-percentage) '%';
  position: relative;
  bottom: 20px;
}

#chart #bars li span {
  color: #000;
  width: 100%;
  position: absolute;
  bottom: -30px;
  left: 0;
  text-align: left;
}
